<xs:simpleType name="CountryCodeType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>ISO country code</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:minLength value="2" />
<xs:maxLength value="5" />
</xs:restriction>
</xs:simpleType> |